mirror of
https://gitlab.com/flectra-community/devops/odoo-2-flectra-converter.git
synced 2025-08-13 14:15:39 +00:00
Initial Commit
This commit is contained in:
17
Dockerfile
Normal file
17
Dockerfile
Normal file
@@ -0,0 +1,17 @@
|
||||
FROM python:3-alpine
|
||||
|
||||
MAINTAINER Jamotion <info@jamotion.ch>
|
||||
|
||||
RUN pip install --no-cache-dir jinja2
|
||||
|
||||
RUN mkdir -p /opt/migrator/migrator
|
||||
RUN mkdir -p /opt/migrator/data
|
||||
COPY migrator /opt/migrator/migrator
|
||||
ADD migrate_repository.py /opt/migrator/
|
||||
RUN chmod 0666 /opt/migrator/migrate_repository.py
|
||||
|
||||
WORKDIR /opt/migrator/data
|
||||
VOLUME /opt/migrator/data
|
||||
|
||||
ENTRYPOINT ["python", "/opt/migrator/migrate_repository.py"]
|
||||
CMD ["-h"]
|
Reference in New Issue
Block a user