Skip to content
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
4 changes: 2 additions & 2 deletions scripts/docker/Dockerfile.base
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

FROM debian:stable

MAINTAINER Pierre-Yves Strub <pierre-yves@strub.nu>
LABEL org.opencontainers.image.maintainer="Pierre-Yves Strub <pierre-yves@strub.nu>"

ARG user=charlie

ENV DEBIAN_FRONTEND noninteractive
ENV DEBIAN_FRONTEND=noninteractive

RUN \
apt-get -q -y update && \
Expand Down
7 changes: 7 additions & 0 deletions scripts/docker/Dockerfile.formosa
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# syntax = devthefuture/dockerfile-x

FROM ./Dockerfile.test as test-formosa

RUN \
opam install --deps-only --confirm-level=unsafe-yes jasmin && \
opam clean
3 changes: 1 addition & 2 deletions scripts/docker/Dockerfile.test
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ FROM ./Dockerfile.build
ARG EC_VERSION=main

RUN \
opam pin --dev-repo \
add -n easycrypt https://github.com/EasyCrypt/easycrypt.git#${EC_VERSION} && \
opam pin add -n easycrypt https://github.com/EasyCrypt/easycrypt.git#${EC_VERSION} && \
opam install -v easycrypt && \
rm -rf .opam/packages.dev/*