paste69/Dockerfile

15 lines
261 B
Docker

FROM crystallang/crystal:latest
WORKDIR /app
RUN apt-get update && apt-get install libmagic-dev -y
COPY . .
RUN shards install
RUN shards build server --release
RUN shards build cli
RUN chmod +x ./docker/entrypoint.sh
ENTRYPOINT [ "docker/entrypoint.sh" ]