Skip to content

Commit fc36567

Browse files
authored
fix python builds (#291)
* fix python builds builds are broken, probably because python:3 is now pointing to 3.10 * don't build check image
1 parent 912709b commit fc36567

File tree

8 files changed

+10
-67
lines changed

8 files changed

+10
-67
lines changed

.github/workflows/docker.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ jobs:
3636
- clowder
3737
- mongo-init
3838
- monitor
39-
- check
4039
include:
4140
- name: clowder
4241
FOLDER: "."
@@ -50,10 +49,6 @@ jobs:
5049
FOLDER: scripts/monitor
5150
IMAGE: monitor
5251
README: ""
53-
- name: check
54-
FOLDER: scripts/check
55-
IMAGE: check
56-
README: ""
5752
steps:
5853
- uses: actions/checkout@v2
5954

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## Unreleased
8+
9+
### Changed
10+
- now building mongo-init and monitor docker containers with python 3.8
11+
12+
### Removed
13+
- check image is now part of [ncsa/checks](https://github.com/ncsa/checks/)
14+
715
## 1.19.0 - 2021-10-05
816
**_Important:_** This update requires a MongoDB update schema due to the new ability of showing summary statistics at the
917
space level. Make sure to start the application with -DMONGOUPDATE=1.

scripts/check/Dockerfile

Lines changed: 0 additions & 22 deletions
This file was deleted.

scripts/check/check_mongodb

Lines changed: 0 additions & 17 deletions
This file was deleted.

scripts/check/check_rabbitmq

Lines changed: 0 additions & 19 deletions
This file was deleted.

scripts/check/requirements.txt

Lines changed: 0 additions & 2 deletions
This file was deleted.

scripts/mongo-init/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3-slim
1+
FROM python:3.8-slim
22
MAINTAINER Bing Zhang <[email protected]>
33

44
# environemnt variables

scripts/monitor/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.5
1+
FROM python:3.8-slim
22

33
EXPOSE 9999
44

0 commit comments

Comments
 (0)