bun-activitypub/Dockerfile
death.au 14a118d887 Update Dockerfile
Trying a different approach, copying the src folder and other individual files
2023-11-12 23:45:02 +00:00

13 lines
No EOL
208 B
Docker

FROM oven/bun:latest
WORKDIR /app
COPY ./package.json /app
COPY ./bun.lockb /app
RUN bun install
COPY ./actor.ts /app
COPY ./tsconfig.json /app
COPY ./src /app/src
CMD [ "bun", "run", "/app/src/index.ts"]