Skip to content

Commit 47143ab

Browse files
committed
Add GitHub Actions workflow to build grade-python images
1 parent bffab67 commit 47143ab

15 files changed

Lines changed: 1199 additions & 12 deletions

.github/workflows/build.yml

Lines changed: 1187 additions & 0 deletions
Large diffs are not rendered by default.

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG BASE_TAG=latest
2-
FROM --platform=$TARGETPLATFORM apluslms/grading-base:$BASE_TAG
2+
FROM apluslms/grading-base:$BASE_TAG
33

44
COPY rootfs /
55

Dockerfile.comp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG FULL_TAG=latest
2-
FROM --platform=$TARGETPLATFORM apluslms/grade-python:$FULL_TAG
2+
FROM apluslms/grade-python:$FULL_TAG
33

44
RUN pip_install \
55
beautifulsoup4 \

Dockerfile.jupyter

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG FULL_TAG=latest
2-
FROM --platform=$TARGETPLATFORM apluslms/grade-python:ml-$FULL_TAG
2+
FROM apluslms/grade-python:ml-$FULL_TAG
33

44
RUN pip_install \
55
nbconvert~=7.2.9 \

Dockerfile.math

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG FULL_TAG=latest
2-
FROM --platform=$TARGETPLATFORM apluslms/grade-python:$FULL_TAG
2+
FROM apluslms/grade-python:$FULL_TAG
33

44
RUN apt_install \
55
bc \

Dockerfile.mec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG FULL_TAG=latest
2-
FROM --platform=$TARGETPLATFORM apluslms/grade-python:math-$FULL_TAG
2+
FROM apluslms/grade-python:math-$FULL_TAG
33

44

55
RUN pip_install \

Dockerfile.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG FULL_TAG=latest
2-
FROM --platform=$TARGETPLATFORM apluslms/grade-python:math-$FULL_TAG
2+
FROM apluslms/grade-python:math-$FULL_TAG
33

44
RUN pip_install \
55
networkx==3.2.1 \

Dockerfile.ply

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG FULL_TAG=latest
2-
FROM --platform=$TARGETPLATFORM apluslms/grade-python:$FULL_TAG
2+
FROM apluslms/grade-python:$FULL_TAG
33

44
# PLY is yet another implementation of lex and yacc for Python,
55
# in other words, a parser and lexer generator.

Dockerfile.psql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG FULL_TAG=latest
2-
FROM --platform=$TARGETPLATFORM apluslms/grade-python:$FULL_TAG
2+
FROM apluslms/grade-python:$FULL_TAG
33

44
RUN apt_install \
55
postgresql \

Dockerfile.rdf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG FULL_TAG=latest
2-
FROM --platform=$TARGETPLATFORM apluslms/grade-python:$FULL_TAG
2+
FROM apluslms/grade-python:$FULL_TAG
33

44
RUN apt_install \
55
python3-rdflib \

0 commit comments

Comments
 (0)