File: Dockerfile

package info (click to toggle)
omnidb-plpgsql-debugger 3.0.0.20201026-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 184 kB
  • sloc: ansic: 420; sql: 215; sh: 81; makefile: 13
file content (18 lines) | stat: -rw-r--r-- 291 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
FROM pgappbuild

USER root
ENV HOME /root
WORKDIR /root
SHELL ["/bin/bash", "-c"]

ARG REPO="git://github.com/OmniDB/plpgsql_debugger"
ARG BRANCH="main"
ARG VERSION="3.0.0"

ENV REPO=$REPO
ENV BRANCH=$BRANCH
ENV VERSION=$VERSION

COPY entrypoint.sh $HOME

ENTRYPOINT ["/root/entrypoint.sh"]