Skip to content
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
1 change: 1 addition & 0 deletions .devcontainer/fromscratch/minimal.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
# and setting OPAMYES.

USER vscode
ENV HOME=/home/vscode
WORKDIR /home/vscode

# Make sure ~/bin is in the PATH
Expand Down Expand Up @@ -70,8 +71,8 @@
&& opam install --yes --deps-only ./karamel.opam \
&& make -j$(nproc)

ENV FSTAR_EXE $HOME/FStar/bin/fstar.exe

Check warning on line 74 in .devcontainer/fromscratch/minimal.Dockerfile

View workflow job for this annotation

GitHub Actions / build-and-push

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV KRML_HOME $HOME/karamel

Check warning on line 75 in .devcontainer/fromscratch/minimal.Dockerfile

View workflow job for this annotation

GitHub Actions / build-and-push

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

# Instrument .profile and .bashrc to set the opam switch. Note that this
# just appends the *call* to eval $(opam env) in these files, so we
Expand Down
Loading