mirror of
https://github.com/jakeswenson/BitBetter.git
synced 2023-10-10 13:36:57 +02:00
12 lines
369 B
Docker
12 lines
369 B
Docker
FROM bitwarden/api
|
|
|
|
COPY bin/Debug/netcoreapp2.0/publish/* /bitBetter/
|
|
COPY cert.cert /newLicensing.cer
|
|
|
|
RUN dotnet /bitBetter/bitBetter.dll && \
|
|
echo "modified dll" && \
|
|
mv /app/Core.dll /app/Core.orig.dll && \
|
|
mv /app/modified.dll /app/Core.dll && \
|
|
echo "replaced dll" && \
|
|
rm -rf /bitBetter && rm -rf /newLicensing.cer && \
|
|
echo "cleaned up" |