aboutsummaryrefslogblamecommitdiffstats
path: root/telebot/Dockerfile
blob: cdf2a83b049cb070c83e5856bfcfdce14105d2ca (plain) (tree)
1
2
3
4
5
6
7
8
9
                           

                             



                                  
 
                               




                                                                                                                              
                
                                     

                                              

                
                                            
FROM alpine:3.18 as builder
RUN apk update && apk upgrade
RUN apk add go git
COPY go.* /telebot/
RUN cd /telebot && go mod download
COPY *.go /telebot/
RUN cd /telebot && go build

FROM alpine:3.18 as certbuilder
RUN apk add openssl
WORKDIR /certs
RUN openssl req -nodes -new -x509 -subj="/C=US/ST=Denial/L=springfield/O=Dis/CN=localhost" -keyout server.key -out server.cert

# FROM gcr.io/distroless/static-debian10
FROM alpine:3.18
COPY --from=certbuilder /certs /certs
COPY --from=builder /telebot/telebot /telebot/
COPY ./docker-entrypoint.sh /telebot/
ENV ALL_PROXY=
ENV HTTPS_PROXY=
ENTRYPOINT ["/telebot/docker-entrypoint.sh"]