Fakultas Ilmu Komputer UI
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Course Site
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
PMPL
Course Site
Commits
3b8b7542
Commit
3b8b7542
authored
3 years ago
by
Daya Adianto
Browse files
Options
Downloads
Patches
Plain Diff
Remove Dockerfile
parent
3a0fc09d
No related branches found
No related tags found
No related merge requests found
Pipeline
#87570
passed
3 years ago
Stage: build
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Dockerfile
+0
-27
0 additions, 27 deletions
Dockerfile
with
0 additions
and
27 deletions
Dockerfile
deleted
100644 → 0
+
0
−
27
View file @
3a0fc09d
FROM
python:3.9-alpine
AS
builder
# Create a working directory
WORKDIR
/src
# Copy project files into the builder image
COPY
. .
# Install dependencies
ENV
PIPENV_VENV_IN_PROJECT=1
RUN
apk update
&&
apk add
--no-cache
\
gcc
=
10.2.1_pre1-r3
\
musl-dev
=
1.2.2-r0
\
&&
pip
install
--no-cache-dir
"pipenv==2020.11.15"
\
&&
pipenv
sync
\
&&
pipenv run mkdocs build
FROM
nginx:1.19-alpine
# Copy the generated static site
COPY
--from=builder /src/site /usr/share/nginx/html
# Set metadata information for the container image
LABEL
org.opencontainers.image.authors="PMPL Teaching Team" \
org.opencontainers.image.vendor="Faculty of Computer Science Universitas Indonesia" \
org.opencontainers.image.title="PMPL Static Website" \
org.opencontainers.image.description="Static website for pmpl.cs.ui.ac.id"
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