mirror of
https://github.com/simon987/keysmash.git
synced 2025-04-03 08:23:06 +00:00
14 lines
226 B
Docker
14 lines
226 B
Docker
FROM node:12 as build
|
|
|
|
WORKDIR /app
|
|
COPY keysmash/ ./
|
|
|
|
RUN npm install
|
|
RUN npm run build
|
|
|
|
FROM nginx:1.20.1-alpine
|
|
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
COPY --from=build /app/dist/ /www/
|
|
COPY --from=build /app/static/ /www/
|