Files
dokku/tests/apps/dockerfile/Dockerfile
Jose Diaz-Gonzalez b6bf22812b fix: add bash
This is preferable to having a very large image that is based on debian/ubuntu.
2020-06-20 13:53:46 -04:00

14 lines
169 B
Docker

FROM node:4-alpine
RUN apk add --no-cache bash
EXPOSE 3001/udp
EXPOSE 3000/tcp
EXPOSE 3003
COPY . /var/www/html
WORKDIR /var/www/html
RUN npm install
CMD npm start