[web] Update Dockerfile
This commit is contained in:
parent
17cacf0f9e
commit
baf2ad8b21
@ -3,37 +3,22 @@ FROM ubuntu:22.04
|
|||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
RUN apt-get update
|
RUN apt-get update
|
||||||
|
|
||||||
RUN apt-get install curl -y
|
RUN apt-get install curl -y
|
||||||
|
|
||||||
RUN apt-get install -y ca-certificates curl gnupg
|
RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
|
||||||
RUN mkdir -p /etc/apt/keyrings
|
RUN apt-get install nodejs git -y
|
||||||
RUN curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
|
|
||||||
ENV NODE_MAJOR=18
|
|
||||||
RUN echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list
|
|
||||||
RUN apt-get update
|
|
||||||
RUN apt-get install nodejs -y
|
|
||||||
|
|
||||||
RUN apt-get install git -y
|
|
||||||
|
|
||||||
RUN git config --global user.name "Admin"
|
RUN git config --global user.name "Admin"
|
||||||
|
|
||||||
RUN git config --global user.email noemail@example.com
|
RUN git config --global user.email noemail@example.com
|
||||||
|
|
||||||
COPY package*.json ./
|
COPY package*.json ./
|
||||||
|
|
||||||
RUN npm install
|
RUN npm install
|
||||||
|
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
ENV PORT=3000
|
ENV PORT=3000
|
||||||
|
|
||||||
EXPOSE 3000
|
EXPOSE 3000
|
||||||
|
|
||||||
EXPOSE 7006
|
EXPOSE 7006
|
||||||
|
|
||||||
RUN npm run build
|
RUN npm run build
|
||||||
|
|
||||||
RUN chmod +x ./docker/entry.sh
|
RUN chmod +x ./docker/entry.sh
|
||||||
|
|
||||||
CMD ["./docker/entry.sh"]
|
CMD ["./docker/entry.sh"]
|
@ -1,4 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
npx prisma db push --accept-data-loss
|
npx prisma db push --accept-data-loss
|
||||||
npx prisma generate
|
npx prisma generate
|
||||||
BODY_SIZE_LIMIT=10240 INIT=true node build
|
BODY_SIZE_LIMIT=Infinity INIT=true node build
|
Loading…
Reference in New Issue
Block a user