paste69/Dockerfile

12 lines
196 B
Docker
Raw Normal View History

2024-01-03 03:09:05 +00:00
FROM crystallang/crystal:latest
WORKDIR /app
RUN apt-get update && apt-get install libmagic-dev -y
COPY . .
RUN shards install
RUN shards build --release
ENTRYPOINT [ "docker/entrypoint.sh" ]