combine.fm/Dockerfile.dev

11 lines
134 B
Text
Raw Normal View History

2020-01-18 10:19:20 +00:00
FROM node:13.6.0-alpine3.11
2018-04-08 16:31:46 +01:00
WORKDIR /app
2020-01-18 10:19:20 +00:00
RUN apk add --update git python make g++
2018-04-08 16:31:46 +01:00
ENV PORT 3000
EXPOSE 3000
CMD ["yarn", "start"]