update dockerfile
Docker / build (push) Has been cancelled Details

This commit is contained in:
Chris W 2024-01-07 12:08:08 -07:00
parent a04006ee91
commit 01fb80644c
1 changed files with 4 additions and 1 deletions

View File

@ -2,7 +2,10 @@ FROM crystallang/crystal:latest
WORKDIR /app WORKDIR /app
RUN apt-get update && apt-get install libmagic-dev -y RUN apt-get update && \
apt-get install -y \
libmagic-dev \
libsqlite3-dev
COPY . . COPY . .