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

RUN echo -e  "\nhttps://dl-cdn.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories
RUN apk add --update --no-cache go git make musl-dev curl openssl
RUN mkdir -p /app/src
WORKDIR /app/src
ARG appRoot=/app
COPY appbuild.sh /app/src
RUN chmod +x appbuild.sh
RUN ./appbuild.sh
COPY sign.sh /app/src
WORKDIR /
COPY entrypoint.sh /
RUN chmod +x entrypoint.sh
EXPOSE 3000
ENTRYPOINT ./entrypoint.sh