Initial commit

This commit is contained in:
3wc 2021-05-31 22:22:04 +02:00
commit b63e9b43c4
2 changed files with 34 additions and 0 deletions

31
Dockerfile Normal file
View File

@ -0,0 +1,31 @@
# 3wc: golang:1.16.4-alpine3.13 is out, but giving errors on APK repositories @
# time of writing..
FROM golang:1.16.4-alpine3.12
RUN apk -U upgrade \
&& apk add -t build-dependencies git gcc musl-dev
ENV GO_SSB_ROOM_VER=2.0.3
RUN cd / \
&& wget -q https://github.com/ssb-ngi-pointer/go-ssb-room/archive/refs/tags/v${GO_SSB_ROOM_VER}.tar.gz \
&& tar -xzf v${GO_SSB_ROOM_VER}.tar.gz \
&& mv go-ssb-room-${GO_SSB_ROOM_VER} app \
&& rm v${GO_SSB_ROOM_VER}.tar.gz
WORKDIR /app
## we run go build to compile the binary
## executable of our Go program
RUN cd cmd/server \
&& go mod download go.cryptoscope.co/secretstream \
&& go build .
RUN apk del build-dependencies \
&& rm -rf /var/cache/apk/* /tmp/*
COPY entrypoint.sh /docker-entrypoint.sh
## Our start command which kicks off
## our newly created binary executable
CMD ["/docker-entrypoint.sh"]

3
entrypoint.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
/app/cmd/server/server -https-domain "$DOMAIN"