nostrudel/dockerfile

12 lines
240 B
Plaintext
Raw Normal View History

2023-07-16 15:41:24 -05:00
# syntax=docker/dockerfile:1
FROM node:20
2023-07-16 15:41:24 -05:00
WORKDIR /app
COPY . /app/
2023-10-04 12:26:38 -05:00
ENV VITE_COMMIT_HASH=""
ENV VITE_APP_VERSION="custom"
2023-07-16 15:41:24 -05:00
RUN yarn install && yarn build
FROM nginx:stable-alpine-slim
EXPOSE 80
COPY --from=0 /app/dist /usr/share/nginx/html