aboutsummaryrefslogtreecommitdiffstats
path: root/.gitpod.Dockerfile
blob: 60533e87e7a7c184363211b7ee280737df57f41b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
FROM gitpod/workspace-full

RUN apt update && apt upgrade -y
RUN apt install -y go git
COPY go.* /hived/
RUN cd /hived && go mod download
COPY *.go /hived/
RUN cd /hived && go build

COPY ./docker-entrypoint.sh /hived/
ENTRYPOINT ["/hived/docker-entrypoint.sh"]