refactor(Docker): fix codacy warnings (#1902)

This commit is contained in:
Francesco Borzì 2019-05-29 17:52:04 +02:00 committed by Barbz
parent 7cc25a63a7
commit fa9638a1b1

View file

@ -1,4 +1,4 @@
FROM alpine:latest as builder
FROM alpine:3.9 as builder
# install bash
RUN apk add --no-cache bash
@ -21,4 +21,4 @@ COPY --from=builder /azerothcore/env/dist/sql /sql
# adding the "generate-databases.sh" to the directory "/docker-entrypoint-initdb.d"
# because all scripts included in that directory will automatically be executed when the docker container starts
ADD docker/database/generate-databases.sh /docker-entrypoint-initdb.d
COPY docker/database/generate-databases.sh /docker-entrypoint-initdb.d