mirror of
https://github.com/Radiquum/AniX.git
synced 2025-09-06 06:23:53 +05:00
CI: add build CI for api-prox
This commit is contained in:
parent
d71ae186a2
commit
155146c5a0
4 changed files with 50 additions and 1 deletions
18
api-prox/Dockerfile
Normal file
18
api-prox/Dockerfile
Normal file
|
@ -0,0 +1,18 @@
|
|||
FROM node:23-alpine
|
||||
|
||||
LABEL org.opencontainers.image.source=https://github.com/radiquum/anix
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY package.json package-lock.json ./
|
||||
RUN npm ci
|
||||
|
||||
COPY *.ts ./
|
||||
COPY tsconfig.json ./
|
||||
|
||||
RUN mkdir -p /app/hooks
|
||||
|
||||
EXPOSE 7001
|
||||
ENV PORT=7001
|
||||
ENV HOSTNAME="0.0.0.0"
|
||||
CMD ["npm", "run", "serve"]
|
Loading…
Add table
Add a link
Reference in a new issue