You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
247 B
15 lines
247 B
3 years ago
|
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
|