Skip to content

Commit

Permalink
Fix this shit
Browse files Browse the repository at this point in the history
  • Loading branch information
awlx committed Nov 14, 2023
1 parent 6305482 commit bbb0348
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ RUN apt-get update && \
apt-get install -y python
WORKDIR /code
COPY . ./
RUN npm ci --no-audit --prefer-offline
RUN npm run gulp
RUN npm install
RUN npm run build

FROM nginx:1.25.3-alpine
COPY --from=build /code/build/ /usr/share/nginx/html
COPY --from=build /code/config.json.example /usr/share/nginx/html/config.json
COPY --from=build /code/config.json /usr/share/nginx/html/config.json

EXPOSE 80

0 comments on commit bbb0348

Please sign in to comment.