1
0
mirror of https://github.com/JustKato/FreePad.git synced 2026-02-23 15:50:46 +02:00
Files
FreePad/Dockerfile

15 lines
212 B
Docker
Raw Normal View History

FROM alpine
2022-06-01 18:29:17 +03:00
LABEL version="1.4.0"
# 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"]