mirror of
https://github.com/maaslalani/gambit.git
synced 2024-12-24 20:14:34 +02:00
fe96530644
* use goreleaser for release * add docker builds * add docker-compose.yml example
11 lines
180 B
Docker
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" ] |