diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..44e759c1 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM node:lts-alpine +RUN npm install -g http-server +WORKDIR /app +COPY package*.json ./ +RUN npm install +COPY . . +RUN npm run build + +EXPOSE 8080 +CMD [ "http-server", "dist" ] \ No newline at end of file diff --git a/build.sh b/build.sh new file mode 100644 index 00000000..7e885676 --- /dev/null +++ b/build.sh @@ -0,0 +1,2 @@ +docker build -t docker.keks.cloud/keksaccount/gui:latest . +docker push docker.keks.cloud/keksaccount/gui:latest \ No newline at end of file diff --git a/src/App.vue b/src/App.vue index 202e2e77..61051825 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,5 +1,5 @@