-
Notifications
You must be signed in to change notification settings - Fork 2
/
Dockerfile
44 lines (32 loc) · 1.06 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
########################################################################################################################
# build stage
########################################################################################################################
FROM alpine:3.15.10 AS build
RUN apk update && \
apk add --no-cache \
build-base \
cmake \
git \
gcc \
g++ \
libstdc++ \
libgomp
WORKDIR /taxor
COPY src/ ./src/
WORKDIR /taxor/build
RUN cmake ../src && \
cmake --build . --config Release
########################################################################################################################
# image
########################################################################################################################
FROM alpine:3.15.10
RUN apk update && \
apk add --no-cache \
libstdc++ \
libgomp
RUN addgroup -S taxor && adduser -S taxor -G taxor
USER taxor
COPY --chown=taxor:taxor --from=build \
./taxor/build/main/taxor \
./app/
ENTRYPOINT [ "./app/taxor" ]