mirror of
https://github.com/alangrainger/immich-public-proxy.git
synced 2024-12-28 20:01:57 +00:00
17 lines
297 B
Docker
17 lines
297 B
Docker
FROM node:lts-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json ./
|
|
|
|
RUN npm install --omit=dev
|
|
|
|
COPY . .
|
|
|
|
ENV NODE_ENV=production
|
|
|
|
# Build without type checking, as we have removed the Typescript
|
|
# dev-dependencies above to save space in the final build
|
|
RUN npx tsc --noCheck
|
|
|
|
CMD [ "node", "dist/index.js" ]
|