nostrudel/dockerfile

14 lines
259 B
Plaintext
Raw Normal View History

2023-07-16 15:41:24 -05:00
# syntax=docker/dockerfile:1
2023-12-09 07:21:57 -06:00
FROM node:20 as builder
2023-07-16 15:41:24 -05:00
WORKDIR /app
COPY . /app/
2023-12-09 07:21:57 -06:00
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
2023-12-09 07:21:57 -06:00
COPY --from=builder /app/dist /usr/share/nginx/html