platform/sample-project/Dockerfile

14 lines
243 B
Docker
Raw Normal View History

2018-12-31 16:14:18 +00:00
FROM google/dart:2.0
COPY ./ ./
# Install dependencies, pre-build
RUN pub get
# Optionally build generaed sources.
# RUN pub run build_runner build
# Set environment, start server
ENV ANGEL_ENV=production
EXPOSE 3000
CMD dart bin/prod.dart