Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare release 0.2.1 #22

Merged
merged 2 commits into from
Sep 3, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# See https://github.com/phusion/baseimage-docker/blob/master/Changelog.md
# Based on Ubuntu 18.04 since v0.11
FROM phusion/baseimage:0.11
FROM phusion/baseimage:bionic-1.0.0
MAINTAINER AiiDA Team

# Use the following arguments during *build* time:
Expand Down Expand Up @@ -80,8 +80,11 @@ RUN cd /tmp && \
conda update --all --quiet --yes && \
conda clean --all -f -y

# Upgrade ruamel.py version. Fixes https://github.com/aiidateam/aiida-core/issues/4339.
RUN conda install ruamel.yaml==0.16.10

# This is needed to let non-root users create conda environments.
RUN mkdir /opt/conda/pkgs && touch /opt/conda/pkgs/urls.txt
RUN touch /opt/conda/pkgs/urls.txt

# Create system user.
COPY my_init.d/create-system-user.sh /etc/my_init.d/10_create-system-user.sh
Expand Down