fix dockerfile

This commit is contained in:
Siddharth Singh 2024-10-27 07:47:09 +05:30
parent 93afce883e
commit 975737b0c3
No known key found for this signature in database

View file

@ -4,7 +4,7 @@ ENV PORT 5000
WORKDIR /app WORKDIR /app
RUN mkdir -p data && chown -R deno data RUN mkdir -p data && chown -R deno data
COPY . . COPY . .
RUN deno cache src/server.ts RUN deno cache --allow-import src/server.ts
RUN apt-get update && apt-get install -y unzip curl RUN apt-get update && apt-get install -y unzip curl
RUN deno task soapbox RUN deno task soapbox
CMD deno task start CMD deno task start