This commit is contained in:
simon987 2020-08-07 21:20:23 -04:00
parent d75524ec3a
commit 3872e1135d

14
Dockerfile Normal file
View File

@ -0,0 +1,14 @@
FROM node:10 as build
COPY ./music_graph /app
WORKDIR app
RUN npm install
RUN npm run build
FROM nginx:alpine
COPY --from=build /app/dist /webroot
COPY nginx.conf /etc/nginx/
EXPOSE 80