Files
FreePad/Dockerfile
T

15 lines
212 B
Docker
Raw Normal View History

2022-05-21 16:45:56 +03:00
FROM alpine
2022-05-22 20:42:19 +03:00
LABEL version="1.2.0"
2022-05-21 16:45:56 +03:00
# Copy the distribution files
COPY ./dist /app
# Make /app the work directory
WORKDIR /app
# Expose the listening port
EXPOSE 8080
# Run the program
ENTRYPOINT ["./freepad"]