Skip to content
This repository was archived by the owner on Sep 12, 2022. It is now read-only.
Open
Show file tree
Hide file tree
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
22 changes: 20 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,29 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
- <in case of vulnerabilities>
-->

## [Unreleased](https://github.com/cyverse/atmosphere/compare/v37-0...HEAD) - YYYY-MM-DD
## [Unreleased](https://github.com/cyverse/atmosphere/compare/v37-1...HEAD) - YYYY-MM-DD
## [<exact release including patch>](<github compare url>) - <release date in YYYY-MM-DD>
### Added
- <summary of new features>

### Changed
- moved apt-get remove with other apt commands in Dockerfile

### Deprecated
- <for soon-to-be removed features>

### Removed
- removed atmosphere-ansible from Dockerfile

### Fixed
- <for any bug fixes>

### Security
- <in case of vulnerabilities>



## [v37-0](https://github.com/cyverse/atmosphere/compare/v36-9...v37-0) - 2020-08-13
## [v37-0](https://github.com/cyverse/atmosphere/compare/v36-9...v37-1) - 2020-08-13
### Added
- script to create access token for users
([#744](https://github.com/cyverse/atmosphere/pull/744))
Expand Down
6 changes: 1 addition & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ RUN apt-get update && \
uwsgi \
uwsgi-plugin-python \
zlib1g-dev && \
apt-get autoremove -y && \
rm -rf /var/lib/apt/lists/* && \
locale-gen en_US.UTF-8

Expand All @@ -57,7 +58,6 @@ RUN mkdir /opt/env && \
pip install --upgrade pip==9.0.3 virtualenv &&\
virtualenv /opt/env/atmosphere &&\
ln -s /opt/env/atmosphere/ /opt/env/atmo
RUN git clone --depth 1 https://github.com/cyverse/atmosphere-ansible.git /opt/dev/atmosphere-ansible

COPY . /opt/dev/atmosphere
WORKDIR /opt/dev/atmosphere
Expand All @@ -75,10 +75,6 @@ RUN mkdir -p /etc/uwsgi/apps-available /etc/uwsgi/apps-enabled && \

RUN source /opt/env/atmo/bin/activate && pip install -r requirements.txt

# Cleanup
RUN apt-get autoremove -y && \
rm -rf /var/lib/apt/lists/*

RUN useradd user

# Prepare entrypoint
Expand Down