Skip to content

Commit

Permalink
fix: update fhir-converter to dotnet 8 (#3080)
Browse files Browse the repository at this point in the history
* fix: update fhir-converter to dotnet 8

* build: moar logging

* Update containers/fhir-converter/Dockerfile
  • Loading branch information
mcmcgrath13 authored Jan 3, 2025
1 parent 9f705c7 commit ea9e9f2
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions containers/fhir-converter/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build

# Download FHIR-Converter
RUN git clone https://github.com/skylight-hq/FHIR-Converter.git --branch v7.0-skylight-18 --single-branch /build/FHIR-Converter
RUN git clone https://github.com/skylight-hq/FHIR-Converter.git --branch v7.0-skylight-19 --single-branch /build/FHIR-Converter

WORKDIR /build/FHIR-Converter

# For sanity checking github actions caching
RUN git log --pretty=oneline -2

RUN echo test > src/Microsoft.Health.Fhir.TemplateManagement.UnitTests/TestData/DecompressedFiles/VXU_V04.liquid
RUN if [ -f src/Microsoft.Health.Fhir.TemplateManagement.UnitTests/TestData/DecompressedFiles/.wh.VXU_V04.liquid ]; then rm src/Microsoft.Health.Fhir.TemplateManagement.UnitTests/TestData/DecompressedFiles/.wh.VXU_V04.liquid; fi

Expand Down

0 comments on commit ea9e9f2

Please sign in to comment.