Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

16 lines
243 B

# getting base image ubuntu
FROM alpine:latest
RUN apk add --no-cache nodejs npm
COPY . /usr/src/app
WORKDIR /usr/src/app/swarmlab-app/src
RUN npm install
EXPOSE 3000
ENTRYPOINT ["node"]
CMD ["/usr/src/app/swarmlab-app/src/run/app.js"]