mirror of https://github.com/JustKato/FreePad.git
15 lines
212 B
Docker
15 lines
212 B
Docker
|
FROM alpine
|
||
|
|
||
|
LABEL version="1.0.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"]
|