1
0
mirror of https://github.com/maaslalani/gambit.git synced 2024-12-24 20:14:34 +02:00
gambit/Dockerfile
Ayman Bagabas fe96530644 ci: add build and release workflow
* use goreleaser for release
* add docker builds
* add docker-compose.yml example
2022-02-23 13:48:18 -05:00

11 lines
180 B
Docker

FROM scratch
COPY gambit /usr/local/bin/gambit
# Expose data volume
VOLUME /data
# Expose ports
EXPOSE 53531/tcp
# Set the default command
ENTRYPOINT [ "/usr/local/bin/gambit" ]