Files
dde_gesture_manager/api/Dockerfile
T

15 lines
247 B
Docker
Raw Normal View History

2021-12-17 18:24:32 +08:00
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