15 lines
247 B
Docker
15 lines
247 B
Docker
FROM google/dart:latest
|
|
|
|
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
|