Dockerfile 93 B

123456
  1. ARG POSTGRES_VERSION=alpine
  2. FROM postgres:${POSTGRES_VERSION}
  3. CMD ["postgres"]
  4. EXPOSE 5432