-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathDockerfile
31 lines (22 loc) · 879 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
FROM umputun/baseimage:buildgo-latest as build
ARG GIT_BRANCH
ARG GITHUB_SHA
ARG CI
ADD . /build
WORKDIR /build
RUN \
if [ -z "$CI" ] ; then \
echo "runs outside of CI" && version=$(git rev-parse --abbrev-ref HEAD)-$(git log -1 --format=%h)-$(date +%Y%m%dT%H:%M:%S); \
else version=${GIT_BRANCH}-${GITHUB_SHA:0:7}-$(date +%Y%m%dT%H:%M:%S); fi && \
echo "version=$version" && \
cd app && go build -o /build/telegram-rt-bot -ldflags "-X main.revision=${version} -s -w"
FROM umputun/baseimage:app-latest
# enables automatic changelog generation by tools like Dependabot
LABEL org.opencontainers.image.source="https://github.com/radio-t/super-bot"
COPY --from=build /build/telegram-rt-bot /srv/telegram-rt-bot
COPY data/*.data /srv/data/
COPY data/logs.html /srv/logs.html
RUN chown -R app:app /srv
EXPOSE 18001
WORKDIR /srv
CMD ["/srv/telegram-rt-bot"]