All checks were successful
Build and Push Nightly CI Image / build_and_push (push) Successful in 1m43s
Build and Push Docker Image / build_and_push (push) Successful in 4s
8 lines
201 B
Docker
8 lines
201 B
Docker
FROM oven/bun:latest
|
|
WORKDIR /app
|
|
COPY package*.json /app/
|
|
RUN apt-get update && apt-get install -y python3 build-essential
|
|
RUN bun install
|
|
COPY . /app
|
|
EXPOSE 3000
|
|
CMD [ "bun", "run", "src/server.ts" ] |