Skip to content

Commit

Permalink
Merge pull request #27 from Vastra-Gotalandsregionen/AI-731
Browse files Browse the repository at this point in the history
AI-731: Bump Pytorch to 0.3.1
  • Loading branch information
luksi1 authored Feb 9, 2023
2 parents 53fb0d5 + 37d3fe9 commit 2f54670
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_pytorch_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def test_dockerfile(self):
lines = list(map(lambda x: x.strip(), fin.readlines()))
dockerfile_text = Path(dockerfile_path).read_text()

assert lines[1] == "FROM registry.git.vgregion.se/aiplattform/images/pytorch:0.3.0"
assert lines[1] == "FROM registry.git.vgregion.se/aiplattform/images/pytorch:0.3.1"
assert lines[-1] == 'WORKDIR /workspace'
assert "ADD http://aiav2.vgregion.se/VGC%20Root%20CA%20v2.crt /tmp/vgc_root.der" in lines
assert "ADD http://aiav2.vgregion.se/VGC%20Issuing%201%20CA%20v2.crt /tmp/vgc_issuing1.der" in lines
Expand Down
2 changes: 1 addition & 1 deletion {{ cookiecutter.repo_name }}/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% if cookiecutter.image == 'Tensorflow' %}FROM registry.git.vgregion.se/aiplattform/images/tensorflow:0.2.0{% endif %}
{% if cookiecutter.image == 'PyTorch' %}FROM registry.git.vgregion.se/aiplattform/images/pytorch:0.3.0{% endif %}
{% if cookiecutter.image == 'PyTorch' %}FROM registry.git.vgregion.se/aiplattform/images/pytorch:0.3.1{% endif %}
{% if cookiecutter.image == 'R' %}FROM registry.git.vgregion.se/aiplattform/images/r:0.2.0{% endif %}
ENV GID=1000
ENV UID=1000
Expand Down

0 comments on commit 2f54670

Please sign in to comment.