VirtWebRemote/remote_backend/Dockerfile
Pierre HUBERT 10569459c3
All checks were successful
continuous-integration/drone/push Build is passing
Fix Dockerfile entrypoint specification
2024-12-06 19:09:17 +01:00

10 lines
213 B
Docker

FROM debian:bookworm-slim
RUN apt-get update \
&& apt-get install -y libcurl4 \
&& rm -rf /var/lib/apt/lists/*
COPY remote_backend /usr/local/bin/remote_backend
ENTRYPOINT ["/usr/local/bin/remote_backend"]