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

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