Name the first image

This commit is contained in:
Benjamin Bach 2024-01-13 19:32:30 +01:00
parent 34efc06607
commit ee1d100e2f
No known key found for this signature in database
GPG Key ID: 486F0D69C845416E
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
FROM node:20-alpine
FROM node:20-alpine AS nodebuild
RUN apk add git
@ -14,7 +14,7 @@ RUN cd /phanpy && \
FROM nginx:alpine
COPY --from=0 /phanpy/dist /usr/share/nginx/html
COPY --from=nodebuild /phanpy/dist /usr/share/nginx/html
EXPOSE 80