File tree 3 files changed +3
-1
lines changed
3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ our @EXPORT_OK = qw(
43
43
) ;
44
44
45
45
# might want to change this for upstream
46
- use constant ENV_PREFIX => ' BMO_ ' ;
46
+ use constant ENV_PREFIX => ' BZ_ ' ;
47
47
use constant PARAM_OVERRIDE =>
48
48
qw( use_mailer_queue mail_delivery_method shadowdb shadowdbhost shadowdbport shadowdbsock ) ;
49
49
Original file line number Diff line number Diff line change @@ -81,6 +81,7 @@ WORKDIR /app
81
81
COPY --from=builder /app/PACKAGES /app/PACKAGES
82
82
RUN apt-get update -y && apt-get install -y $(cat PACKAGES)
83
83
COPY --from=builder /app/local /app/local
84
+ COPY --from=builder /app/MYMETA.* /app/
84
85
COPY ./ /app/
85
86
env LOCALCONFIG_ENV 1
86
87
ENTRYPOINT ["perl" , "bugzilla.pl" ]
Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ say $fh q{RUN apt-get update -y && apt-get install -y $(cat PACKAGES) };
36
36
# several lines should be merged together, and we need to make sure to clean up
37
37
# the apt package cache after installing packages to maintain a small image size
38
38
say $fh q{ COPY --from=builder /app/local /app/local} ;
39
+ say $fh q{ COPY --from=builder /app/MYMETA.* /app/} ;
39
40
say $fh q{ COPY ./ /app/} ;
40
41
41
42
say $fh q{ env LOCALCONFIG_ENV 1} ;
You can’t perform that action at this time.
0 commit comments