This repository has been archived on 2024-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
fradrive-old/docker/backend/Dockerfile

12 lines
294 B
Docker

# TODO: switch to uniworx registry debian image
FROM debian:12.5
RUN apt-get -y update
RUN apt-get -y install haskell-stack
RUN apt-get -y install libghc-zlib-dev libpq-dev
WORKDIR /fradrive
ENV FRADRIVE_MAKE_TARGET=backend-build
ENTRYPOINT pwd && ls -a . && make -- ${FRADRIVE_MAKE_TARGET}