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
197 B

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