Pierre HUBERT
e4ae43f182
All checks were successful
continuous-integration/drone/push Build is passing
10 lines
216 B
Docker
10 lines
216 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
|