Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Pulsar
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
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
NDIP
Pulsar
Commits
592f7449
Commit
592f7449
authored
6 years ago
by
Nuwan Goonasekera
Browse files
Options
Downloads
Patches
Plain Diff
Base image off debian miniconda2
parent
fcab5c3f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Dockerfile
+16
-16
16 additions, 16 deletions
Dockerfile
with
16 additions
and
16 deletions
Dockerfile
+
16
−
16
View file @
592f7449
FROM
frolvlad/alpine-
miniconda2
FROM
conda/
miniconda2
ENV
PYTHONUNBUFFERED 1
ENV
DEBIAN_FRONTEND noninteractive
ENV
PULSAR_CONFIG_CONDA_PREFIX /
opt/conda
ENV
PULSAR_CONFIG_CONDA_PREFIX /
usr/local
ADD
./requirements.txt /pulsar/
RUN
apk update
\
# psycopg2 dependencies
&& apk add --no-cache --virtual build-deps gcc python-dev musl-dev \
# CFFI dependencies
&& apk --no-cache add libffi-dev py-cffi \
&& apk --no-cache add make linux-headers \
RUN
apt-get update
\
# build dependencies
&& apt-get install -y --no-install-recommends gcc python-setuptools python-dev python-pip \
\
# Install python requirements
# Install
pulsar
python requirements
&& pip install --no-cache-dir -r /pulsar/requirements.txt \
\
# Remove build deps
&& apk del build-deps \
&& rm /var/cache/apk/*
# Remove build deps and cleanup
&& apt-get -y remove curl bzip2 python-dev gcc \
&& apt-get -y autoremove \
&& apt-get autoclean \
&& rm -rf /var/lib/apt/lists/* /var/log/dpkg.log
# Create pulsar user environment
RUN
adduser
-
D
-g
''
pulsar
\
RUN
adduser
-
-disabled-password
--gecos
''
pulsar
\
&&
mkdir
-p
/pulsar
# Set working directory to /pulsar/
...
...
@@ -33,12 +32,13 @@ ADD . /pulsar
# Change ownership to pulsar
RUN
python setup.py
install
\
&&
pulsar-config
--auto_conda
--host
0.0.0.0
\
&&
chown
-R
pulsar:pulsar /pulsar
&&
chown
-R
pulsar:pulsar /pulsar
\
&&
chmod
+x /usr/local/bin/pulsar
# Switch to new, lower-privilege user
USER
pulsar
#
gunicorn
will listen on this port
#
pulsar
will listen on this port
EXPOSE
8913
CMD
sh $PULSAR_CONFIG_CONDA_PREFIX
/bin/pulsar
CMD
/usr/local
/bin/pulsar
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