1.0.0 (#26)
Build / Build [amd64] (push) Has been cancelled
Build / Build [arm64] (push) Has been cancelled
Build / Publish (push) Has been cancelled

* bump outline to 1.0.0-2

* update translation.json

* update readme.*

* update Dockerfile*

* bump outline to 1.0.0-test8

* reorganize repo, add git hook

* bump version to 1.0.0

* update translations
This commit is contained in:
Evgeny
2025-10-27 17:47:11 +05:00
committed by GitHub
parent 7bcf8279e2
commit daa7561aff
12 changed files with 210 additions and 99 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
FROM node:20 AS base
FROM node:22 AS base
ARG APP_PATH
ARG SRC_PATH
WORKDIR $APP_PATH
@@ -19,7 +19,7 @@ RUN yarn install --no-optional --frozen-lockfile --network-timeout 1000000 && \
yarn cache clean
COPY ${SRC_PATH} .
COPY --from=deps $APP_PATH/node_modules ./node_modules
COPY ./tools/patches/* .
COPY ./patches/* .
RUN for patch in $(ls *.patch); do patch -p1 < $patch; done
RUN cat <<EOF > /entrypoint.sh
npx yarn concurrently -n "dev,i18n" \