flux / Dockerfile
gitdeem's picture
Upload Dockerfile
4c8f35d verified
raw
history blame contribute delete
145 Bytes
FROM node:alpine
WORKDIR /app
COPY . /app
RUN npm install
RUN mkdir /app/images \
&& chmod 777 /app/images
CMD ["npm", "start"]