Skip to content

Commit

Permalink
update docker
Browse files Browse the repository at this point in the history
  • Loading branch information
minjikarin committed May 10, 2023
1 parent 10ad26a commit e5ceb9f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@ COPY . /code

RUN pip install -r requirements.txt

RUN python amadeus_demo/manage.py collectstatic --noinput

ENTRYPOINT ["python", "amadeus_demo/manage.py"]

CMD ["runserver", "0.0.0.0:8000"]

EXPOSE 8000
EXPOSE 8000
2 changes: 1 addition & 1 deletion amadeus_demo/map/templates/map/map.html
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ <h2>Find the perfect hotel for your journey!</h2>
poi_lat = pois[i]['lat'];
poi_lng = pois[i]['lng'];
poi_category = pois[i]['category'];
if (poi_category == 'NIGHTLIFE') {
if (poi_category == 'NIGHTLIFE') {
var customIcon = new H.map.Icon("{% static 'icons/nightlife.svg' %}", {
size: {
w: 32,
Expand Down

0 comments on commit e5ceb9f

Please sign in to comment.