Pierre HUBERT
5ce523a3fb
All checks were successful
continuous-integration/drone/push Build is passing
10 lines
220 B
Docker
10 lines
220 B
Docker
FROM debian:bookworm-slim
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y libcurl4 libpq5 \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY geneit_backend /usr/local/bin/geneit_backend
|
|
|
|
ENTRYPOINT ["/usr/local/bin/geneit_backend"]
|