mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
- Always put flags in same location - Always use apt-get - Add --no-install-recommends where possible
7 lines
276 B
Docker
7 lines
276 B
Docker
FROM ubuntu:18.04
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get update -qq && apt-get -qq -y --no-install-recommends install gcc git build-essential wget ruby-dev ruby1.9.1 lintian rpm help2man man-db
|
|
RUN command -v fpm >/dev/null || sudo gem install fpm --no-ri --no-rdoc
|