fix: update dockerfile

This commit is contained in:
max_richter 2025-01-05 23:51:37 +01:00
parent 58fc85b38f
commit cc6209afcb

View File

@ -6,7 +6,10 @@ ENV DENO_DEPLOYMENT_ID=${GIT_REVISION}
WORKDIR /app
COPY . .
RUN deno install --allow-scripts=npm:sharp@0.33.5-rc.1 && deno task db migrate && deno task build
RUN deno install --allow-scripts &&\
sed -i -e 's/"deno"/"no-deno"/' node_modules/@libsql/client/package.json &&\
deno task db migrate &&\
deno task build
EXPOSE 8000