Removed Docker files

This commit is contained in:
Lucien Cartier-Tilet 2020-06-23 11:15:11 +02:00
parent bffbd0c873
commit 1331fdaf79
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
2 changed files with 0 additions and 34 deletions

View File

@ -1,22 +0,0 @@
FROM google/dart:2.8
WORKDIR /app
# Get Ruby Sass
RUN apt update && apt install ruby-sass ruby-dev build-essential -y
RUN gem install sass-listen
# Get Dart dependencies
RUN mkdir -p /pub-cache
ENV PUB_CACHE=/pub-cache
ENV PATH="${PATH}:/pub-cache/bin"
RUN pub global activate webdev
ADD pubspec.* /app/
RUN pub get
RUN pub get --offline
# ADD . /app/
ADD web /app/
ADD start.sh /app/
CMD ["./start.sh"]

View File

@ -1,12 +0,0 @@
version: '3'
services:
owb:
build: .
ports:
- 8010:8080
restart: always
environment:
- RELEASE=debug
volumes:
- ./web:/app/web