Update Dockerfile
This commit is contained in:
parent
7dc8ab252d
commit
f8d42cfe36
1 changed files with 3 additions and 1 deletions
|
@ -2,11 +2,13 @@ FROM node:18-bullseye-slim
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY package*.json ./
|
COPY package*.json ./
|
||||||
ARG GIT_COMMIT
|
ARG GIT_COMMIT
|
||||||
|
ARG GIT_BRANCH
|
||||||
RUN apt-get update
|
RUN apt-get update
|
||||||
RUN apt-get install -y git
|
RUN apt-get install -y git
|
||||||
RUN rm -rf /var/lib/apt/lists/*
|
RUN rm -rf /var/lib/apt/lists/*
|
||||||
RUN npm install
|
RUN npm install
|
||||||
RUN rm -rf .git
|
ENV GIT_BRANCH=$GIT_BRANCH
|
||||||
|
ENV GIT_COMMIT=$GIT_COMMIT
|
||||||
RUN git clone -n https://github.com/wukko/cobalt.git --depth 1 && mv cobalt/.git ./ && rm -rf cobalt
|
RUN git clone -n https://github.com/wukko/cobalt.git --depth 1 && mv cobalt/.git ./ && rm -rf cobalt
|
||||||
COPY . .
|
COPY . .
|
||||||
EXPOSE 9000
|
EXPOSE 9000
|
||||||
|
|
Loading…
Reference in a new issue