Encrypted messaging app
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
310 B

  1. FROM golang:1.19-alpine
  2. RUN mkdir -p /go/src/git.tovijaeschke.xyz/Capsule/Backend
  3. COPY ./ /go/src/git.tovijaeschke.xyz/Capsule/Backend
  4. WORKDIR /go/src/git.tovijaeschke.xyz/Capsule/Backend
  5. # For "go test" and development
  6. RUN apk add gcc libc-dev inotify-tools
  7. RUN go mod download
  8. CMD [ "sh", "./dev.sh" ]