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