Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

merge feature/push-notifications into develop #145

Merged
merged 10 commits into from
Dec 18, 2024
9 changes: 5 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@


FROM node:18-alpine AS deps
WORKDIR /app
COPY package.json package-lock.json ./
RUN apk add --no-cache libc6-compat && npm ci
COPY package.json yarn.lock ./
RUN apk add --no-cache libc6-compat bash curl && \
curl -o- -L https://yarnpkg.com/install.sh | bash && \
export PATH="$PATH:$(yarn global bin)" && \
yarn install --frozen-lockfile
#
FROM node:18-alpine AS builder
WORKDIR /app
Expand Down
Loading
Loading