Files
dokku/tests/apps/dockerfile/second.Dockerfile
2021-07-10 14:57:58 -04:00

16 lines
182 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
RUN echo hi
CMD npm start