Snippets

Sten Pittet Node 6.6 and PostgreSQL

Created by Sten Pittet
1
2
3
4
5
6
7
8
9
FROM node:6.6.0
RUN apt-get update \
  && apt-get install -y postgresql postgresql-contrib \
  && apt-get install sudo \
  && apt-get clean \
  && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

# This Dockerfile doesn't need to have an entrypoint and a command
# as Bitbucket Pipelines will overwrite it with a bash script.

Comments (0)

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.