mirror of
https://github.com/n08i40k/schedule-parser-rusted.git
synced 2025-12-06 09:47:50 +03:00
15 lines
228 B
Docker
15 lines
228 B
Docker
FROM debian:stable-slim
|
|
LABEL authors="n08i40k"
|
|
|
|
ARG BINARY_NAME
|
|
|
|
WORKDIR /app/
|
|
|
|
RUN apt update && \
|
|
apt install -y libpq5 ca-certificates openssl
|
|
|
|
COPY ./${BINARY_NAME} /bin/main
|
|
RUN chmod +x /bin/main
|
|
|
|
ENTRYPOINT ["main"]
|