Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
docker-D-Zone
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
JetBrains YouTrack
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Griefed
docker-D-Zone
Commits
51d926c6
Unverified
Commit
51d926c6
authored
4 years ago
by
Griefed
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Non-reverse proxy deployment
parent
1e3a409d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Dockerfile.noproxy
+38
-0
38 additions, 0 deletions
Dockerfile.noproxy
with
38 additions
and
0 deletions
Dockerfile.noproxy
0 → 100644
+
38
−
0
View file @
51d926c6
FROM lsiobase/alpine:3.12
LABEL maintainer="Griefed <griefed@griefed.de>"
# Test whether these are needed. If not, remove
ENV HOME="/app"
ENV NODE_ENV="production"
# Build our D-Zone S6 image with lsiobase alpine. Much love to, Linuxserver.io!
RUN \
echo "**** install dependencies and build tools and stuff ****" && \
apk add --no-cache \
git \
nano \
npm \
nodejs && \
mkdir -p \
/app/d-zone && \
git clone -b \
v1/docker \
https://github.com/d-zone-org/d-zone.git \
/app/d-zone && \
echo "**** run npm install and build D-Zone ****" && \
cd /app/d-zone && \
npm install --no-optional && \
npm run-script build && \
echo "**** delete git as we no longer need it ****" && \
apk del --purge \
git && \
rm -rf \
/root/.cache \
/tmp/*
# Copy local files
COPY root/ /
# Communicate port to be used
EXPOSE 3000
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment