deepsourcestatus / test-repository

Set the SHELL option -o pipefail before using RUN with a pipe character DOK-DL4006
Bug risk
Major
1 occurrence in this check
Set the SHELL option -o pipefail before RUN with a pipe in it. If you are using /bin/sh in an alpine image or if your shell is symlinked to busybox then consider explicitly setting your SHELL to /bin/ash, or disable this check
42COPY --from=builder /home/postgres /app
43
44# To be used in the container.
45RUN curl https://rustup.sh | sh46
47# Create a PostgreSQL role named ``docker`` with ``docker`` as the password and
48# then create a database `docker` owned by the ``docker`` role.