mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-04-18 23:41:17 -04:00
14 lines
187 B
Docker
14 lines
187 B
Docker
FROM node:18 as build
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . ./
|
|
RUN npm install
|
|
ENV NODE_ENV production
|
|
RUN npm app build
|
|
|
|
|
|
FROM nginx:alpine
|
|
COPY --from=build /app/dist /usr/share/nginx/html
|
|
|
|
EXPOSE 80
|