mirror of
https://github.com/jakeswenson/BitBetter.git
synced 2025-07-13 06:53:25 +00:00
11 lines
315 B
Docker
11 lines
315 B
Docker
FROM bitwarden/api
|
|
|
|
COPY bin/Debug/netcoreapp2.0/publish/* /bitBetter/
|
|
COPY ./.keys/cert.cert /newLicensing.cer
|
|
|
|
RUN set -e; set -x; \
|
|
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
|