mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-09 22:42:58 +00:00
e1ec98e248
Fix Docker files which had been forgotten in #594 and update scripts and docs to remove references to gb. I also removed the `jenkins` directory which is outdated. We can revert f8d7e99 if we realise that it was a mistake to do so.
10 lines
156 B
Docker
10 lines
156 B
Docker
FROM docker.io/golang:1.12.5-alpine3.9
|
|
|
|
RUN mkdir /build
|
|
|
|
WORKDIR /build
|
|
|
|
RUN apk --update --no-cache add openssl bash git
|
|
|
|
CMD ["bash", "docker/build.sh"]
|