Skip to content

Commit f49e943

Browse files
committed
fix missing MYMETA.json file
1 parent 9a5c095 commit f49e943

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

Bugzilla/Install/Localconfig.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ our @EXPORT_OK = qw(
4343
);
4444

4545
# might want to change this for upstream
46-
use constant ENV_PREFIX => 'BMO_';
46+
use constant ENV_PREFIX => 'BZ_';
4747
use constant PARAM_OVERRIDE =>
4848
qw( use_mailer_queue mail_delivery_method shadowdb shadowdbhost shadowdbport shadowdbsock );
4949

Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ WORKDIR /app
8181
COPY --from=builder /app/PACKAGES /app/PACKAGES
8282
RUN apt-get update -y && apt-get install -y $(cat PACKAGES)
8383
COPY --from=builder /app/local /app/local
84+
COPY --from=builder /app/MYMETA.* /app/
8485
COPY ./ /app/
8586
env LOCALCONFIG_ENV 1
8687
ENTRYPOINT ["perl", "bugzilla.pl"]

Dockerfile.PL

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ say $fh q{RUN apt-get update -y && apt-get install -y $(cat PACKAGES) };
3636
# several lines should be merged together, and we need to make sure to clean up
3737
# the apt package cache after installing packages to maintain a small image size
3838
say $fh q{COPY --from=builder /app/local /app/local};
39+
say $fh q{COPY --from=builder /app/MYMETA.* /app/};
3940
say $fh q{COPY ./ /app/};
4041

4142
say $fh q{env LOCALCONFIG_ENV 1};

0 commit comments

Comments
 (0)