From fcc421c177fca4fcb09c0e048bba686df4fb7e8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20P=C3=B3=C5=82grabia?= Date: Wed, 9 Feb 2022 21:30:35 +0100 Subject: [PATCH] Fixing schema and adding docker builds. --- backend/Dockerfile | 13 +++++++++++++ backend/README.md | 12 +++++++++++- backend/build_deploy.sh | 4 ++++ backend/schema/ddl.sql | 6 +++--- 4 files changed, 31 insertions(+), 4 deletions(-) create mode 100644 backend/Dockerfile create mode 100755 backend/build_deploy.sh diff --git a/backend/Dockerfile b/backend/Dockerfile new file mode 100644 index 0000000..1829860 --- /dev/null +++ b/backend/Dockerfile @@ -0,0 +1,13 @@ +FROM node:16 +WORKDIR /app +RUN apt-get update +RUN apt-get install -y sqlite3 +RUN mkdir -p /app/data +COPY ./package*.json /app +COPY ./*.js /app +COPY ./config-dev.json /app +COPY ./schema/ddl.sql /app/ddl.sql +RUN npm install +RUN echo "You can provide some initialization for sqlite3 database" +RUN sqlite3 /app/data/people.dat < /app/ddl.sql +CMD node /app/index.js /app/config-dev.json diff --git a/backend/README.md b/backend/README.md index d1db969..16e7cd5 100644 --- a/backend/README.md +++ b/backend/README.md @@ -1,3 +1,13 @@ # How to start backend -node .\index.js .\config-dev.json \ No newline at end of file +node .\index.js .\config-dev.json + +# Building docker image + +Please proceed with following steps: + +- execute 'docker build --no-cache . -t frontend-showcase-backend:latest' +- check if 'docker run frontend-showcase-backend:latest' works well +- execute 'docker login' +- execute 'docker tag frontend-showcase-backend:latest tpolgrabia/frontend-showcase-backend:latest' +- execute 'docker push tpolgrabia/frontend-showcase-backend:latest' diff --git a/backend/build_deploy.sh b/backend/build_deploy.sh new file mode 100755 index 0000000..b6500cc --- /dev/null +++ b/backend/build_deploy.sh @@ -0,0 +1,4 @@ +#!/bin/sh +docker build --no-cache . -t frontend-showcase-backend:latest +docker tag frontend-showcase-backend:latest tpolgrabia/frontend-showcase-backend:latest +docker push tpolgrabia/frontend-showcase-backend:latest diff --git a/backend/schema/ddl.sql b/backend/schema/ddl.sql index 8ebf58e..4b0b947 100644 --- a/backend/schema/ddl.sql +++ b/backend/schema/ddl.sql @@ -3,9 +3,9 @@ create table persons ( firstName text not null, lastName text not null, email varchar(256) not null, - status integer default 0 - created_at date not null default datetime('now', 'localtime'), - updated_at date not null default datetime('now', 'localtime') + status integer default 0, + created_at date not null default current_timestamp, + updated_at date not null default current_timestamp ); create trigger update_at_persons