slikcHOBBY
13 days ago
Below is my Dockerfile for my express server, I'm using prisma, and openssl is a requirement, however this is the error i'm continuing to get every time I try deploy my project:
failed to copy: httpReadSeeker: failed open: failed to do request: Get "https://registry-1.docker.io/v2/oven/bun/blobs/sha256:fecfb1b2425f2ef69be47181767ee5aae5ea97d29afcc0d21f08cfcfa4a0b716": context canceled: context canceled
and this is the file:
FROM oven/bun:alpine
RUN apk add --no-cache openssl
WORKDIR /app
COPY package.json bun.lockb* ./
RUN bun i
COPY . .
RUN bun prisma generate
EXPOSE 3001
CMD ["bun", "index.ts"]