Files
statusbot/Dockerfile

13 lines
262 B
Docker

FROM debian:12-slim
RUN apt-get update && apt-get install -y \
fpc fp-units-fcl fp-units-net tzdata \
libssl3 libssl-dev \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY statusbot.pas .
RUN fpc statusbot.pas
CMD ["./statusbot"]