Dockerfile

This commit is contained in:
Tobe O 2018-12-27 21:14:42 -05:00
parent 04f7bd43ae
commit 46d50c8b13

View file

@ -1,38 +1,14 @@
FROM ubuntu:16.04 FROM google/dart:2.0
MAINTAINER Tobe O <thosakwe@gmail.com>
# Install Dart SDK. COPY ./ ./
RUN sudo apt-get update
RUN sudo apt-get install -y apt-transport-https
RUN sudo apt-get install -y curl
RUN sudo sh -c 'curl https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -'
# Uncomment this for Dart 1.24.x
# RUN sudo sh -c 'curl https://storage.googleapis.com/download.dartlang.org/linux/debian/dart_stable.list > /etc/apt/sources.list.d/dart_stable.list'
# Comment this out if not installing Dart 2.x
RUN sudo sh -c 'curl https://storage.googleapis.com/download.dartlang.org/linux/debian/dart_unstable.list > /etc/apt/sources.list.d/dart_unstable.list'
RUN sudo apt-get update
RUN sudo apt-get install -y dart
RUN export PATH="/usr/lib/dart/bin:$PATH"
# Copy necessary files
ADD bin/ bin/
ADD config/ config/
ADD lib/ lib/
ADD tool/ tool/
ADD views/ views/
ADD web/ web/
ADD pubspec.yaml pubspec.yaml
# Install dependencies, pre-build # Install dependencies, pre-build
RUN /usr/lib/dart/bin/pub get RUN pub get
RUN /usr/lib/dart/bin/dart tool/build.dart
RUN /usr/lib/dart/bin/pub build # Optionally build generaed sources.
# RUN pub run build_runner build
# Set environment, start server # Set environment, start server
ENV ANGEL_ENV=production ENV ANGEL_ENV=production
EXPOSE 3000 EXPOSE 3000
ENTRYPOINT ["/usr/lib/dart/bin/dart"] CMD dart bin/prod.dart
CMD ["bin/prod.dart"]