bun-activitypub/Dockerfile
death.au c14bd1d578 Update Dockerfile
Something isn't working in the deploy, so I'm trying ADD instead of COPY
2023-11-12 23:36:49 +00:00

11 lines
No EOL
152 B
Docker

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