mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 11:29:46 +00:00
11 lines
205 B
Docker
11 lines
205 B
Docker
FROM denoland/deno:1.44.2
|
|
|
|
ENV PORT 5000
|
|
|
|
WORKDIR /app
|
|
RUN mkdir -p data
|
|
COPY . .
|
|
RUN deno cache src/server.ts
|
|
RUN apt-get update && apt-get install -y unzip curl
|
|
RUN deno task soapbox
|
|
CMD deno task start
|