10 lines
160 B
Docker
10 lines
160 B
Docker
FROM oven/bun:1.0.23
|
|
|
|
EXPOSE 3000
|
|
|
|
WORKDIR /online-energieausweis
|
|
COPY ./package.json ./
|
|
COPY . .
|
|
RUN bun install --prod
|
|
|
|
CMD ["bun", "run", "build:production"] |