Skip to content

Commit

Permalink
fix: Docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
denysvitali committed Jan 9, 2024
1 parent 530d921 commit d2befbf
Show file tree
Hide file tree
Showing 3 changed files with 1,643 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM node:lts AS builder
COPY . /app
WORKDIR /app
RUN yarn install
RUN yarn build
RUN yarn run vite build

FROM nginx:stable-alpine
ARG PONGO2_RUNNER_VERSION=0.0.7
Expand All @@ -14,4 +14,4 @@ RUN wget \
chmod a+x /usr/bin/pongo2-runner
COPY --from=builder /app/dist/ /usr/share/nginx/html/
COPY ./entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
ENTRYPOINT ["/entrypoint.sh"]
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
},
"dependencies": {
"@vue/language-core": "^1.8.27",
"@vue/typescript": "^1.8.20",
"sass": "^1.51.0",
"vue": "^3.2.33",
"vue-router": "^4.0.14"
Expand Down
Loading

0 comments on commit d2befbf

Please sign in to comment.