sigcrafting/Dockerfile

15 lines
224 B
Docker
Raw Permalink Normal View History

2023-05-07 02:05:08 -05:00
# pull official base image
FROM node:13.12.0-alpine
RUN mkdir -p /app
WORKDIR /app
EXPOSE 3001
ENV PATH /app/node_modules/.bin:$PATH
COPY . /app
RUN npm install -y --silent
RUN npm rebuild node-sass
CMD ["npm", "start"]