Skip to content

Commit

Permalink
Merge pull request #145 from P4-Games/feature/push-notifications
Browse files Browse the repository at this point in the history
merge feature/push-notifications into develop
  • Loading branch information
dappsar authored Dec 18, 2024
2 parents c4102c3 + 0ab851d commit b4ab5ba
Show file tree
Hide file tree
Showing 25 changed files with 12,921 additions and 14,943 deletions.
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

0 comments on commit b4ab5ba

Please sign in to comment.