Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
frontend
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vicotor
frontend
Commits
7b793793
Commit
7b793793
authored
Jul 25, 2024
by
Or Noyman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
replace '--chmod=+x' with '--chmod=755' for 'COPY' instructions in Dockerfile to be podman-friendly
parent
7e11f56f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
Dockerfile
Dockerfile
+6
-6
No files found.
Dockerfile
View file @
7b793793
...
@@ -51,7 +51,7 @@ COPY --from=deps /app/node_modules ./node_modules
...
@@ -51,7 +51,7 @@ COPY --from=deps /app/node_modules ./node_modules
COPY
. .
COPY
. .
# Generate .env.registry with ENVs list and save build args into .env file
# Generate .env.registry with ENVs list and save build args into .env file
COPY
--chmod=
+x
./deploy/scripts/collect_envs.sh ./
COPY
--chmod=
755
./deploy/scripts/collect_envs.sh ./
RUN
./collect_envs.sh ./docs/ENVS.md
RUN
./collect_envs.sh ./docs/ENVS.md
# Next.js collects completely anonymous telemetry data about general usage.
# Next.js collects completely anonymous telemetry data about general usage.
...
@@ -105,14 +105,14 @@ COPY --from=builder /app/deploy/tools/feature-reporter/index.js ./feature-report
...
@@ -105,14 +105,14 @@ COPY --from=builder /app/deploy/tools/feature-reporter/index.js ./feature-report
# Copy scripts
# Copy scripts
## Entripoint
## Entripoint
COPY
--chmod=
+x
./deploy/scripts/entrypoint.sh .
COPY
--chmod=
755
./deploy/scripts/entrypoint.sh .
## ENV validator and client script maker
## ENV validator and client script maker
COPY
--chmod=
+x
./deploy/scripts/validate_envs.sh .
COPY
--chmod=
755
./deploy/scripts/validate_envs.sh .
COPY
--chmod=
+x
./deploy/scripts/make_envs_script.sh .
COPY
--chmod=
755
./deploy/scripts/make_envs_script.sh .
## Assets downloader
## Assets downloader
COPY
--chmod=
+x
./deploy/scripts/download_assets.sh .
COPY
--chmod=
755
./deploy/scripts/download_assets.sh .
## Favicon generator
## Favicon generator
COPY
--chmod=
+x
./deploy/scripts/favicon_generator.sh .
COPY
--chmod=
755
./deploy/scripts/favicon_generator.sh .
COPY
./deploy/tools/favicon-generator ./deploy/tools/favicon-generator
COPY
./deploy/tools/favicon-generator ./deploy/tools/favicon-generator
RUN
[
"chmod"
,
"-R"
,
"777"
,
"./deploy/tools/favicon-generator"
]
RUN
[
"chmod"
,
"-R"
,
"777"
,
"./deploy/tools/favicon-generator"
]
RUN
[
"chmod"
,
"-R"
,
"777"
,
"./public"
]
RUN
[
"chmod"
,
"-R"
,
"777"
,
"./public"
]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment