mirror of
https://github.com/immich-app/immich.git
synced 2024-11-24 08:52:28 +02:00
rename docker-minimal to dockerfile as target for github action
This commit is contained in:
parent
5d48de7fa9
commit
a8edc85183
@ -1,34 +1,22 @@
|
|||||||
FROM ubuntu:20.04 AS development
|
##################################
|
||||||
|
# DEVELOPMENT
|
||||||
|
##################################
|
||||||
|
FROM node:16-bullseye-slim AS development
|
||||||
|
|
||||||
ARG DEBIAN_FRONTEND=noninteractive
|
ARG DEBIAN_FRONTEND=noninteractive
|
||||||
|
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
COPY package.json yarn.lock ./
|
COPY package.json package-lock.json ./
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y --fix-missing --no-install-recommends \
|
RUN apt-get update
|
||||||
build-essential \
|
RUN apt-get install gcc g++ make cmake python3 python3-pip ffmpeg -y
|
||||||
curl \
|
|
||||||
git-core \
|
|
||||||
iputils-ping \
|
|
||||||
pkg-config \
|
|
||||||
rsync \
|
|
||||||
software-properties-common \
|
|
||||||
unzip \
|
|
||||||
wget \
|
|
||||||
ffmpeg
|
|
||||||
|
|
||||||
# Install NodeJS
|
RUN npm install
|
||||||
RUN curl --silent --location https://deb.nodesource.com/setup_14.x | bash -
|
|
||||||
RUN apt-get install --yes nodejs
|
|
||||||
|
|
||||||
RUN npm i -g yarn
|
|
||||||
|
|
||||||
RUN yarn install
|
|
||||||
|
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
RUN yarn build
|
RUN npm run build
|
||||||
|
|
||||||
# Clean up commands
|
# Clean up commands
|
||||||
RUN apt-get autoremove -y && apt-get clean && \
|
RUN apt-get autoremove -y && apt-get clean && \
|
||||||
@ -37,44 +25,37 @@ RUN apt-get autoremove -y && apt-get clean && \
|
|||||||
RUN apt-get clean && \
|
RUN apt-get clean && \
|
||||||
rm -rf /var/lib/apt/lists/*
|
rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
FROM ubuntu:20.04 as production
|
|
||||||
ARG DEBIAN_FRONTEND=noninteractive
|
|
||||||
ARG NODE_ENV=production
|
|
||||||
ENV NODE_ENV=${NODE_ENV}
|
|
||||||
|
|
||||||
WORKDIR /usr/src/app
|
|
||||||
|
|
||||||
COPY package.json yarn.lock ./
|
##################################
|
||||||
|
# PRODUCTION
|
||||||
|
##################################
|
||||||
|
# FROM node:16-bullseye-slim as production
|
||||||
|
# ARG DEBIAN_FRONTEND=noninteractive
|
||||||
|
# ARG NODE_ENV=production
|
||||||
|
# ENV NODE_ENV=${NODE_ENV}
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y --fix-missing --no-install-recommends \
|
# WORKDIR /usr/src/app
|
||||||
build-essential \
|
|
||||||
curl \
|
|
||||||
git-core \
|
|
||||||
iputils-ping \
|
|
||||||
pkg-config \
|
|
||||||
rsync \
|
|
||||||
software-properties-common \
|
|
||||||
unzip \
|
|
||||||
wget \
|
|
||||||
ffmpeg
|
|
||||||
|
|
||||||
# Install NodeJS
|
# COPY package.json yarn.lock ./
|
||||||
RUN curl --silent --location https://deb.nodesource.com/setup_14.x | bash -
|
|
||||||
RUN apt-get install --yes nodejs
|
|
||||||
|
|
||||||
RUN npm i -g yarn
|
# RUN apt-get update
|
||||||
|
# RUN apt-get install gcc g++ make cmake python3 python3-pip ffmpeg -y
|
||||||
|
|
||||||
RUN yarn install --only=production
|
# RUN npm i -g yarn --force
|
||||||
|
|
||||||
COPY . .
|
# RUN yarn install --only=production
|
||||||
|
|
||||||
COPY --from=development /usr/src/app/dist ./dist
|
# COPY . .
|
||||||
|
|
||||||
# Clean up commands
|
# COPY --from=development /usr/src/app/dist ./dist
|
||||||
RUN apt-get autoremove -y && apt-get clean && \
|
|
||||||
rm -rf /usr/local/src/*
|
|
||||||
|
|
||||||
RUN apt-get clean && \
|
# # Clean up commands
|
||||||
rm -rf /var/lib/apt/lists/*
|
# RUN apt-get autoremove -y && apt-get clean && \
|
||||||
|
# rm -rf /usr/local/src/*
|
||||||
|
|
||||||
CMD ["node", "dist/main"]
|
# RUN apt-get clean && \
|
||||||
|
# rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
|
||||||
|
# CMD ["node", "dist/main"]
|
@ -1,61 +0,0 @@
|
|||||||
##################################
|
|
||||||
# DEVELOPMENT
|
|
||||||
##################################
|
|
||||||
FROM node:16-bullseye-slim AS development
|
|
||||||
|
|
||||||
ARG DEBIAN_FRONTEND=noninteractive
|
|
||||||
|
|
||||||
WORKDIR /usr/src/app
|
|
||||||
|
|
||||||
COPY package.json package-lock.json ./
|
|
||||||
|
|
||||||
RUN apt-get update
|
|
||||||
RUN apt-get install gcc g++ make cmake python3 python3-pip ffmpeg -y
|
|
||||||
|
|
||||||
RUN npm install
|
|
||||||
|
|
||||||
COPY . .
|
|
||||||
|
|
||||||
RUN npm run build
|
|
||||||
|
|
||||||
# Clean up commands
|
|
||||||
RUN apt-get autoremove -y && apt-get clean && \
|
|
||||||
rm -rf /usr/local/src/*
|
|
||||||
|
|
||||||
RUN apt-get clean && \
|
|
||||||
rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
##################################
|
|
||||||
# PRODUCTION
|
|
||||||
##################################
|
|
||||||
# FROM node:16-bullseye-slim as production
|
|
||||||
# ARG DEBIAN_FRONTEND=noninteractive
|
|
||||||
# ARG NODE_ENV=production
|
|
||||||
# ENV NODE_ENV=${NODE_ENV}
|
|
||||||
|
|
||||||
# WORKDIR /usr/src/app
|
|
||||||
|
|
||||||
# COPY package.json yarn.lock ./
|
|
||||||
|
|
||||||
# RUN apt-get update
|
|
||||||
# RUN apt-get install gcc g++ make cmake python3 python3-pip ffmpeg -y
|
|
||||||
|
|
||||||
# RUN npm i -g yarn --force
|
|
||||||
|
|
||||||
# RUN yarn install --only=production
|
|
||||||
|
|
||||||
# COPY . .
|
|
||||||
|
|
||||||
# COPY --from=development /usr/src/app/dist ./dist
|
|
||||||
|
|
||||||
# # Clean up commands
|
|
||||||
# RUN apt-get autoremove -y && apt-get clean && \
|
|
||||||
# rm -rf /usr/local/src/*
|
|
||||||
|
|
||||||
# RUN apt-get clean && \
|
|
||||||
# rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
|
|
||||||
# CMD ["node", "dist/main"]
|
|
Loading…
Reference in New Issue
Block a user