mirror of
https://github.com/JustKato/FreePad.git
synced 2026-02-23 15:50:46 +02:00
+ Build Script
+ DockerFile + Docker-Compose Example
This commit is contained in:
15
Dockerfile
Normal file
15
Dockerfile
Normal file
@@ -0,0 +1,15 @@
|
||||
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"]
|
||||
Reference in New Issue
Block a user