summary refs log tree commit diff
path: root/Dockerfile
blob: 48649bbc0a91e8f4cc43dca346a45e19a8e549d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM alpine:latest

RUN apk add --update --no-cache go git make musl-dev curl openssl
RUN mkdir -p /app/src
WORKDIR /app/src
COPY appbuild.sh /app/src
RUN chmod +x appbuild.sh
RUN ./appbuild.sh
WORKDIR /
COPY entrypoint.sh /
RUN chmod +x entrypoint.sh
EXPOSE 3000
RUN ip addr
ENTRYPOINT ./entrypoint.sh