Fixed dockerfile typo
Some checks failed
gitea/video-server-frontend/pipeline/head There was a failure building this commit

This commit is contained in:
Jose134 2024-08-11 02:55:52 +02:00
parent 93db45b209
commit 4b0ef54301

View File

@ -3,7 +3,7 @@ COPY . /app
WORKDIR /app WORKDIR /app
RUN npm install && npm run build:prod && rm -rf node_modules/ RUN npm install && npm run build:prod && rm -rf node_modules/
FROM nginx:1.17.9-alpine as runtime FROM nginx:1.17.9-alpine AS runtime
COPY --from=build /app/default.conf /etc/nginx/conf.d/ COPY --from=build /app/default.conf /etc/nginx/conf.d/
COPY --from=build /app/dist/ /var/www COPY --from=build /app/dist/ /var/www
EXPOSE 80 EXPOSE 80