mirror of
https://github.com/lovasoa/whitebophir
synced 2024-11-10 06:24:17 +00:00
c34ccbb17a
Switch from the unmaintained node-static to serve-static.
12 lines
157 B
Docker
12 lines
157 B
Docker
FROM node:12-alpine
|
|
|
|
COPY . /opt/app
|
|
WORKDIR /opt/app
|
|
RUN npm install --production
|
|
|
|
ENV PORT=80
|
|
EXPOSE 80
|
|
|
|
VOLUME /opt/app/server-data
|
|
|
|
CMD ["npm", "start"]
|